home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2002 #11 / Amiga Plus CD - 2002 - No. 11.iso / Tools / MorphOS / Epic4_mos / share / epic / help / 5_programming / continue < prev    next >
Encoding:
Text File  |  2002-10-28  |  388 b   |  17 lines

  1. Synopsis:
  2.    continue
  3.  
  4. Description:
  5.    Continue skips certain loops. In a for() or while(), continue will jump to
  6.    the end of the current loop and continue to the next iteration.
  7.  
  8. Examples:
  9.    for (@loop=0,loop<=10,@loop++) {
  10.      if (loop==4) continue
  11.      echo $loop of 10, skipping 4.
  12.    }
  13.  
  14. See Also:
  15.    alias(5); break(5); return(5); for(5); while(4) until
  16.  
  17.